Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - multi threaded server
Search - multi threaded server - List
一个很好的网络服务器程序, 说明了服务器的基本编程方式,并很好的说明了服务器多线程处理方式,对初学网络编程的朋友有很好的指导意义-a good network server that the server's basic programming, and a good example of a multi-threaded server approach to network programming when a friend is a good guide
Update : 2024-05-06 Size : 19456 Publisher : 李明

服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080。-server and client presentation by Socket Interface (TCP) connections. Java use in presentation interface is quite simple, Java API sets to address the communications interface provides a type java.net.Socket. , Making the preparation of network applications relatively easily. Multi-threaded servers to meet the multi-user request, through JDBC and background database connections, and through the creation of a ServerSocket object from the client to monitor the connection request, the default port of 8080.
Update : 2024-05-06 Size : 1710080 Publisher : 陈玉平

网络编程的服务端和客户端.包括用fork和select分别实现多进程编程和多线程编程.程序已经通过测试的.-network programming services and clients. Including fork and select respectively programming multi-process and multi-threaded programming. Procedures have to pass the test.
Update : 2024-05-06 Size : 4096 Publisher : 柳心雨

DL : 0
线程安全实例。该程序说明线程安全问题。该例子实现的功能与多线程并发服务器实例的类似,但增加了一个客户数据存储功能,即服务器将存储每个连接客户所发来的所有数据,当连接终止后,服务将显示客户的名字及相应的数据。-thread safety examples. Description of the procedures for the security thread. The examples of the functions and multi-threaded server with similar examples, but the addition of a customer data storage function, which is to store each server will connect customers come in all the data, when connected after termination of service customers will show the names and corresponding data.
Update : 2024-05-06 Size : 2048 Publisher :

DL : 0
线程安全实例。该程序说明线程安全问题。该例子实现的功能与多线程并发服务器实例的类似,但增加了一个客户数据存储功能,即服务器将存储每个连接客户所发来的所有数据,当连接终止后,服务将显示客户的名字及相应的数据。-thread safety examples. Description of the procedures for the security thread. The examples of the functions and multi-threaded server with similar examples, but the addition of a customer data storage function, which is to store each server will connect customers come in all the data, when connected after termination of service customers will show the names and corresponding data.
Update : 2024-05-06 Size : 1024 Publisher :

DL : 0
用Java作的HTTP1.0 下的Webserver服务器 用TCP协议,采用多线程技术,可作为WEbServer的入门例子-Java for the HTTP1.0 the Webserver server using TCP protocol, multi-threading technology that can serve as examples of entry WEbServer
Update : 2024-05-06 Size : 3072 Publisher : Mark

用JAVA实现的多线程服务器。支持多线程访问服务器。能够实现文件可靠传输-using JAVA multi-threaded server. Visit support multithreaded servers. To achieve reliable document transmission
Update : 2024-05-06 Size : 1774592 Publisher : 泉台

多线程TCPIP_Telnet服务器。 支持多用户登录,便于学习多任务的操作。-Multi-threaded Telnet server application supports multi-users login and learning
Update : 2024-05-06 Size : 2761728 Publisher :

该例是实现一个服务器,多个客户端之间的通信,采用了多线程机制。实现效率高-the cases is a server, a number of client communications between the use of multi-threaded mechanism. To achieve high efficiency
Update : 2024-05-06 Size : 9216 Publisher :

ftp 客户/服务器多线程下载源程序 实现客户端多线程下载功能-ftp client/server multi-threaded download source to achieve client multi-threaded download
Update : 2024-05-06 Size : 165888 Publisher : 谷新宇

DL : 0
服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080,然后无限循环调用accept()方法接受客户程序的连接-server and client presentation by Socket Interface (TCP) connections. Java use in presentation interface is quite simple, Java API sets to address the communications interface provides a type java.net.Socket. , Making the preparation of network applications relatively easily. Multi-threaded servers to meet the multi-user request, through JDBC and background database connections, and through the creation of a ServerSocket object from the client to monitor the connection request, the default port of 8080, then infinite loops call accept () method to accept client connections
Update : 2024-05-06 Size : 903168 Publisher :

DL : 0
C#编写的简易HTTP服务器,能处理GET请求,并发送当前目录内指定的文件,默认文件为"index.htm",找不到文件则发送错误信息 采用多线程编写,能同时连接多个客户端.-C# summary prepared by the HTTP server can handle GET request, , and send the current directory specified in the document, the default document "index.htm" no documents were sent the wrong message multi-threading, can simultaneously connect to multiple client.
Update : 2024-05-06 Size : 5120 Publisher :

多线程 网络传输 开发环境:Delphi7.0+WinXP,没用其他控件(除了Delphi自带的Indy) 传输协议:TCP/IP 客户端一次发送65000字节的包,服务端负责组装并处理数据粘连。 使用ReadBuffer(),Send()函数来接收发送Buffer内字节,这样作的目的是使程序具有更好的灵活性。你可以自定义Buffer内那些字节的含义,例如是字符串、图像、声音、命令等等。 文件的多线程读写采用windows内存映像技术。 关键的服务器处理函数IdTCPServer1Execute(AThread: TIdPeerThread)是非线程安全的。如果使用临界区,那么多线程将在这里串行执行,严重降低多线程效率。对此,我采用一个简单的办法,具体可以看程序。-multithreaded network transmission development environment : Delphi7.0 WinXP, useless other controls (except for the Delphi Indy own) transmission protocol : TCP/IP client to send a 65,000-byte packets, the server is responsible for assembling and processing data adhesion. Use ReadBuffer (), Send () function to receive this Buffer byte, for the purpose of this is to make procedures better flexibility. You can define Buffer byte within the meaning of those, such as strings, images, sounds, etc. order. The documents used to read and write multi-threaded windows memory mapping technology. Key server function IdTCPServer1Execute (AThread : TIdPeerThread) non-thread safe. If the use of critical areas, so many threads here on serial implementation, a serious decline in the efficiency of multit
Update : 2024-05-06 Size : 69632 Publisher : 水滴

简单的多线程WEB服务器,借鉴了<自顶向下方法_计算机网络>里的程序.用java写的.-simple multi-threaded Web server, a reference
Update : 2024-05-06 Size : 1024 Publisher : 赵燕

是一个用来开发同时多人在线游戏的引擎,Arianne提供一个简单的方式来创建游戏服务器规则与游戏客户端.Marauroa Server是用Java开发的多线程服务器,使用UDP协议进行通信,用mysql存储数据,并使用python描述游戏脚本-is also used to develop a multiplayer online game engine, Arianne provide a simple way to create rules of the game and the game server client. Marauro a Java Server is the development of multi-threaded server, the use of UDP communication, with mysql data storage, and describe the use of python script games
Update : 2024-05-06 Size : 3444736 Publisher : 蛤蟆

DL : 0
Easy FTP Server 是一款独立的多线程 FTP 服务器软件,提供了高级的功能和安全性。该软件的界面简单直观,带有用于管理用户、配置和安全性设置的有组织的模块。支持所有基本的 FTP 命令以及多样化的目录、IP 地址拦截、服务器统计表和远程管理功能。它可以被非熟练用户简单地设置,并且还提供了高级的管理选项。-Easy FTP Server is one independent multi-threaded FTP server software. Senior provide the functionality and security. The software interface is simple and intuitive, with the management of the users, configuration and security of organized installed modules. Supports all basic FTP commands and diverse catalog of IP addresses interception, TAB and remote server management functions. It can be simple and non-skilled users to install, and also provided the senior management options.
Update : 2024-05-06 Size : 613376 Publisher : oryacht

java开发的HttpServer程序,C/S结构,多线程-java development HttpServer procedures, C/S architecture, multi-threaded
Update : 2024-05-06 Size : 16384 Publisher : 马成龙

DL : 1
这是我自己写的一个聊天程序,实现了多线程服务器,同时也是我本人的毕业设计。现在很多学生的毕业设计都是聊天程序,希望我的代码能对你有帮助!-that I write a chat program to realize a multi-threaded server, it is also my graduation design. Now many graduate students are chatting design process, I hope that the code can help you!
Update : 2024-05-06 Size : 6144 Publisher : jacky

This code is a sample of proxy server purely written in .NET(C#).It s Multi-Threaded and smart enough to accept internet connections from any client in the LAN and the speed is good. So please vote. -This code is a sample of proxy server purely written in.NET (C#). It's Multi-Threaded and sm art enough to accept connections from internet any client in the LAN and the speed is good. So ple ase vote.
Update : 2024-05-06 Size : 13312 Publisher : 微环境

用VC编写的一个基于WinSocket的http服务器,该程序中完成了自己的异常处理和多线程的处理。-VC prepared a WinSocket on the http server, The procedures completed his abnormal processing and multi-threaded processing.
Update : 2024-05-06 Size : 40960 Publisher : 刘山
« 1 2 34 5 6 7 8 9 10 ... 32 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.